home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / bin / foo2slx-wrapper < prev    next >
Text File  |  2008-09-09  |  17KB  |  696 lines

  1. #!/bin/sh
  2.  
  3. #* Copyright (C) 2003-2006  Rick Richardson
  4. #*
  5. #* This program is free software; you can redistribute it and/or modify
  6. #* it under the terms of the GNU General Public License as published by
  7. #* the Free Software Foundation; either version 2 of the License, or
  8. #* (at your option) any later version.
  9. #*
  10. #* This program is distributed in the hope that it will be useful,
  11. #* but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. #* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. #* GNU General Public License for more details.
  14. #*
  15. #* You should have received a copy of the GNU General Public License
  16. #* along with this program; if not, write to the Free Software
  17. #* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18. #*
  19. #* Authors: Rick Richardson <rick.richardson@comcast.net>
  20.  
  21. VERSION='$Id: foo2slx-wrapper.in,v 1.12 2007/12/27 06:52:45 rick Exp $'
  22.  
  23. #
  24. # Printer Notes:
  25. #
  26. # Lexmark C500        -
  27. #
  28.  
  29. PROGNAME="$0"
  30. BASENAME=`basename $PROGNAME`
  31. PREFIX=/usr
  32. SHARE=$PREFIX/share/foo2slx
  33. PATH=$PATH:/sw/bin:/opt/local/bin
  34.  
  35. #
  36. #    Log the command line, for debugging and problem reports
  37. #
  38. if [ -x /usr/bin/logger ]; then
  39.     logger -t "$BASENAME" -p lpr.info -- "$BASENAME $@" </dev/null
  40. fi
  41.  
  42. usage() {
  43.     cat <<EOF
  44. Usage:
  45.     $BASENAME [options] [ps-file]
  46.  
  47.     Foomatic printer wrapper for the foo2slx printer driver.
  48.     This script reads a Postscript ps-file or standard input
  49.     and converts it to Software Imaging K.K. SLX printer format.
  50.  
  51. Normal Options:
  52. -c                Print in color (else monochrome)
  53. -m media          Media code to send to printer [$MEDIA]
  54.                     0=plain, 1=transparency, 2=labels, 3=thick1, 4=envelope1,
  55.             5=thin, 6=thick2, 7=envelope2, 8=middle, 9=special
  56. -p paper          Paper code [$PAPER]
  57.                     2=a4, 4=b5, 5=b5iso, 6=letter, 8=executive, 9=legal,
  58.                     10=env#10, 11=envDL
  59. -n copies         Number of copies [$COPIES]
  60. -r <xres>x<yres>  Set device resolution in pixels/inch [$RES]
  61. -s source         Source code to send to printer [$SOURCE]
  62.                     0=auto, 1=cassette1
  63.             Code numbers may vary with printer model.
  64. -2/-3/-4/-6/-8/-10/-12/-14/-15/-16/-18
  65.                   Print with N-up (requires psutils)
  66. -o orient         For N-up: -op is portrait, -ol is landscape, -os is seascape.
  67.  
  68. Printer Tweaking Options:
  69. -u <xoff>x<yoff>  Set offset of upper left printable in pixels [varies]
  70. -l <xoff>x<yoff>  Set offset of lower right printable in pixels [varies]
  71. -L mask           Send logical clipping values from -u/-l in ZjStream [3]
  72.                   0=no, 1=Y, 2=X, 3=XY
  73.  
  74. Color Tweaking Options:
  75. -g gsopts         Additional options to pass to Ghostscript, such as
  76.                   -dDITHERPPI=nnn, etc.  May appear more than once. []
  77. -G profile.icm    Convert profile.icm to a Postscript CRD using icc2ps and
  78.                   adjust colors using the setcolorrendering PS operator.
  79.                   $SHARE/icm/ will be searched for profile.icm.
  80. -I intent         Select profile intent from ICM file [$INTENT]
  81.                   0=Perceptual, 1=Colorimetric, 2=Saturation, 3=Absolute
  82. -G gamma-file.ps  Prepend gamma-file to the Postscript input to perform
  83.                   color correction using the setcolortransfer PS operator.
  84.  
  85. Debugging Options:
  86. -S plane          Output just a single color plane from a color print [all]
  87.                   1=Cyan, 2=Magenta, 3=Yellow, 4=Black
  88. -D lvl            Set Debug level [$DEBUG]
  89. -V                $VERSION
  90. EOF
  91.  
  92.     exit 1
  93. }
  94.  
  95. #
  96. #       Report an error and exit
  97. #
  98. error() {
  99.     echo "$BASENAME: $1" >&2
  100.     exit 1
  101. }
  102.  
  103. dbgcmd() {
  104.     if [ $DEBUG -ge 1 ]; then
  105.         echo "$@" >&2
  106.     fi
  107.     "$@"
  108. }
  109.  
  110. #
  111. #    N-up-ify the job.  Requires psnup from psutils package
  112. #
  113. nup() {
  114.     case "$NUP" in
  115.     [2368]|1[0458])
  116.     tr '\r' '\n' | psnup $NUP_ORIENT -d2 -$NUP -m.3in -p$paper -q
  117.     ;;
  118.     [49]|1[26])
  119.     tr '\r' '\n' | psnup $NUP_ORIENT -d2 -$NUP -m.5in -p$paper -q
  120.     ;;
  121.     *)
  122.     error "Illegal call to nup()."
  123.     ;;
  124.     esac
  125. }
  126.  
  127. #
  128. #       Process the options
  129. #
  130.  
  131. # Try to use a local copy of GhostScript 8.54, if available.  Otherwise,
  132. # fallback to whatever the Linux distro has installed (usually 7.07)
  133. #
  134. # N.B. := operator used here, when :- would be better, because "ash"
  135. # doesn't have :-
  136. if gs.foo -v >/dev/null 2>&1; then
  137.         GSBIN=${GSBIN:-gs.foo}
  138. else
  139.         GSBIN=${GSBIN:-gs}
  140. fi
  141.  
  142. CMDLINE="$*"
  143. DEBUG=0
  144. DUPLEX=1
  145. COLOR=
  146. COLORMODE=default
  147. MODEL=0
  148. QUALITY=wts
  149. MEDIA=0
  150. COPIES=1
  151. test -r /etc/papersize && PAPER=$(cat /etc/papersize)
  152. test "$PAPER" || PAPER=6
  153. RES=600x600
  154. SOURCE=0
  155. NUP=
  156. CLIP_UL=
  157. CLIP_LR=
  158. CLIP_LOG=
  159. BC=
  160. AIB=
  161. NOPLANES=
  162. COLOR2MONO=
  163. GAMMAFILE=default
  164. INTENT=0
  165. GSOPTS=
  166. EXTRAPAD=
  167. SAVETONER=
  168. NUP_ORIENT=
  169. GSDEV=-sDEVICE=pbmraw
  170. # What mode to use if the user wants us to pick the "best" mode
  171. case `$GSBIN --version` in
  172. 7*)    DEFAULTCOLORMODE=10
  173.     ;;
  174. 8.1*)
  175.     DEFAULTCOLORMODE=10
  176.     QUALITY=1
  177.     ;;
  178. *)    DEFAULTCOLORMODE=10
  179.     ;;
  180. esac
  181. while getopts "1:23456789o:b:cC:d:g:l:u:L:m:n:p:q:r:s:tz:ABS:D:G:I:PX:Vh?" opt
  182. do
  183.     case $opt in
  184.     b)    GSBIN="$OPTARG";;
  185.     c)    COLOR=-c;;
  186.     d)    DUPLEX="$OPTARG";;
  187.     g)    GSOPTS="$GSOPTS $OPTARG";;
  188.     m)    MEDIA="$OPTARG";;
  189.     n)    COPIES="$OPTARG";;
  190.     p)    PAPER="$OPTARG";;
  191.     q)    QUALITY="$OPTARG";;
  192.     r)    RES="$OPTARG";;
  193.     s)    SOURCE="$OPTARG";;
  194.     t)    SAVETONER="-t";;
  195.     z)    MODEL="$OPTARG";;
  196.     l)    CLIP_LR="-l $OPTARG";;
  197.     u)    CLIP_UL="-u $OPTARG";;
  198.     L)    CLIP_LOG="-L $OPTARG";;
  199.     A)    AIB=-A;;
  200.     B)    BC=-B;;
  201.     C)    COLORMODE="$OPTARG";;
  202.     S)    COLOR2MONO="-S$OPTARG";;
  203.     D)    DEBUG="$OPTARG";;
  204.     G)    GAMMAFILE="$OPTARG";;
  205.     I)    INTENT="$OPTARG";;
  206.     P)    NOPLANES=-P;;
  207.     X)    EXTRAPAD="-X $OPTARG";;
  208.     [234689])    NUP="$opt";;
  209.     [57])    error "Can't find acceptable layout for $opt-up";;
  210.     1)    case "$OPTARG" in
  211.         [024568])    NUP="1$OPTARG";;
  212.         *)    error "Can't find acceptable layout for 1$OPTARG-up";;
  213.         esac
  214.         ;;
  215.     o)    case "$OPTARG" in
  216.         l*)    NUP_ORIENT=-l;;
  217.         s*)    NUP_ORIENT=-r;;
  218.         p*|*)    NUP_ORIENT=;;
  219.         esac;;
  220.     V)    echo "$VERSION"; foo2slx -V; foo2zjs-pstops -V; exit 0;;
  221.     h|\?)
  222.         if [ "$CMDLINE" != "-?" -a "$CMDLINE" != -h ]; then
  223.             echo "Illegal command:"
  224.             echo "    $0 $CMDLINE"
  225.             echo
  226.         fi
  227.         usage;;
  228.     esac
  229. done
  230. shift `expr $OPTIND - 1`
  231.  
  232. #
  233. # If there is an argument left, take it as the file to print.
  234. # Else, the input comes from stdin.
  235. #
  236. if [ $# -ge 1 ]; then
  237.     if [ "$LPJOB" = "" ]; then
  238.     : # LPJOB="$1"
  239.     fi
  240.     exec < $1
  241. fi
  242.  
  243. #
  244. case "$QUALITY" in
  245. 0)
  246.     GSOPTS="-dCOLORSCREEN $GSOPTS"
  247.     ;;
  248. 1)
  249.     GSOPTS="-dCOLORSCREEN $GSOPTS"
  250.     ;;
  251. 2)
  252.     GSOPTS="-dMaxBitmap=500000000 $GSOPTS"
  253.     ;;
  254. wts)
  255.     GSOPTS="-dCOLORSCREEN -dMaxBitmap=500000000 $GSOPTS"
  256.     ;;
  257. esac
  258.  
  259. #
  260. #    Validate model code
  261. #
  262. case "$MODEL" in
  263. 0|1)    ;;
  264. *)    error "Unknown model code $MODEL";;
  265. esac
  266.  
  267. #
  268. #    Validate media code
  269. #
  270. case "$MEDIA" in
  271. 0|plain|standard)    MEDIA=0;;
  272. 1|transparency)        MEDIA=1;;
  273. 2|labels)        MEDIA=2;;
  274. 9|special)        MEDIA=9;;
  275. 5|thin)            MEDIA=5;;
  276. 8|middle)        MEDIA=8;;
  277. 3|thick1)        MEDIA=3;;
  278. 6|thick2)        MEDIA=6;;
  279. 4|envelope1)        MEDIA=4;;
  280. 7|envelope2)        MEDIA=7;;
  281. [0-9]*)        ;;
  282. *)        error "Unknown media code $MEDIA";;
  283. esac
  284.  
  285. #
  286. #    Validate source (InputSlot) code
  287. #
  288. case "$SOURCE" in
  289. 1|cassette1)    SOURCE=1;;
  290. 0|auto)        SOURCE=0;;
  291. [0-9]*)        ;;
  292. *)        error "Unknown source code $SOURCE";;
  293. esac
  294.  
  295. #
  296. #    Validate Duplex code
  297. #
  298. case "$DUPLEX" in
  299. 1|off|none)    DUPLEX=1;;
  300. 2|long*)    DUPLEX=2;;
  301. 3|short*)    DUPLEX=3;;
  302. [0-9]*)        ;;
  303. *)        error "Unknown duplex code $DUPLEX";;
  304. esac
  305.  
  306. #
  307. #    Validate Resolution
  308. #
  309. case "$RES" in
  310. 600x600)    ;;
  311. 1200x600)    ;;
  312. *)        error "Illegal resolution $RES";;
  313. esac
  314.  
  315. #
  316. #    Figure out the paper dimensions in pixels/inch, and set the
  317. #    default clipping region.  Unfortunately, this is a trouble
  318. #    area for ZjStream printers.  Various versions of ZjS print
  319. #    engines react differently when asked to print into their
  320. #    unprintable regions.
  321. #
  322. set_clipping() {
  323.     ulx=$1; uly=$2
  324.     lrx=$3; lry=$4
  325.  
  326.     # Set clipping region if it isn't already set
  327.     if [ "$CLIP_UL" = "" ]; then
  328.     case "$RES" in
  329.     600x600)    ulx=`expr $ulx / 2`;;
  330.     2400x600)    ulx=`expr $ulx \* 2`;;
  331.     esac
  332.     CLIP_UL="-u ${ulx}x${uly}"
  333.     fi
  334.     if [ "$CLIP_LR" = "" ]; then
  335.     case "$RES" in
  336.     600x600)    lrx=`expr $lrx / 2`;;
  337.     2400x600)    lrx=`expr $lrx \* 2`;;
  338.     esac
  339.     CLIP_LR="-l ${lrx}x${lry}"
  340.     fi
  341. }
  342.  
  343. case "$PAPER" in
  344. Custom*)
  345.         #%%BeginFeature: *CustomPageSize True
  346.         #216
  347.         #360
  348.         #0
  349.         #0
  350.         #0
  351.         #pop pop pop pop pop
  352.  
  353.         #%%BeginFeature: *CustomPageSize True
  354.         #792.000000 612.000000 1 0.000000 0.000000
  355.         #pop pop pop pop pop
  356.  
  357.         if [ $DEBUG = 0 ]; then
  358.             TMPFILE=/tmp/cus$$
  359.         else
  360.             TMPFILE=/tmp/custom.ps
  361.         fi
  362.         cat >$TMPFILE
  363.         exec <$TMPFILE
  364.  
  365.         tmp=`head -n 10000 $TMPFILE \
  366.             | sed -n '/CustomPageSize/{n;p;n;p;}' \
  367.             | tr '\n' ' '`
  368.         case "$tmp" in
  369.         [0-9]*\ [0-9]*)
  370.             XDIM=`echo "$tmp" | sed 's/ .*//'`
  371.             YDIM=`echo "$tmp" | sed -e 's/^[^ ]* //' -e 's/ .*//'`
  372.             ;;
  373.         *)
  374.             if [ $DEBUG = 0 ]; then rm -f $TMPFILE; fi
  375.             error "Custom page size [XY]DIM != 1-99999"
  376.             ;;
  377.         esac
  378.         XDIM=`dc -e "$XDIM 1200* 72/p"`
  379.         YDIM=`dc -e "$YDIM 600* 72/p"`
  380.         PAPER=255;        paper=letter;
  381.         MEDIA=4
  382.                 set_clipping 2 100     2 100
  383.         ;;
  384. 6|letter)    PAPER=6;    paper=letter;    XDIM="10200"; YDIM="6600"
  385.         case "$MODEL" in
  386.         0)    set_clipping 204 102    204 106;;
  387.         1)    set_clipping 192 96    192 96;;
  388.         # 1)    set_clipping 96 96    288 96;;
  389.         esac
  390.         ;;
  391. 2|a4|A4)    PAPER=2;    paper=a4;        XDIM="9920";  YDIM="7016"
  392.         case "$MODEL" in
  393.         0)    set_clipping 200 100    200 100 ;;
  394.         1)    set_clipping 192 96    192 96;;
  395.         esac
  396.         ;;
  397. 13|a5|A5)    PAPER=13;    paper=a5;        XDIM="6992";  YDIM="4960"
  398.         case "$MODEL" in
  399.         0)    set_clipping 200 100    200 100;;
  400.         1)    set_clipping 192 96    192 96;;
  401.         esac
  402.         ;;
  403. 4|b5|B5)    PAPER=4;    paper=b5;        XDIM="8598";  YDIM="6070"
  404.         case "$MODEL" in
  405.         0)    set_clipping 207 107    207 107;;
  406.         1)    set_clipping 192 96    192 96;;
  407.         esac
  408.         ;;
  409. 5|b5iso)    PAPER=5;    paper=b5iso;        XDIM="8220";  YDIM="6024"
  410.         case "$MODEL" in
  411.         0)    set_clipping 207 107    207 107;;
  412.         1)    set_clipping 192 96    192 96;;
  413.         esac
  414.         ;;
  415. 8|executive)    PAPER=8;    paper=executive; XDIM="8700";  YDIM="6300"
  416.         case "$MODEL" in
  417.         0)    set_clipping 206 102    206 102;;
  418.         1)    set_clipping 192 96    192 96;;
  419.         esac
  420.         ;;
  421. 9|legal)    PAPER=9;    paper=legal;     XDIM="10200"; YDIM="8400"
  422.         case "$MODEL" in
  423.         0)    set_clipping 204 102    204 106;;
  424.         1)    set_clipping 192 96    192 96;;
  425.         esac
  426.         ;;
  427. 10|"env#10")    PAPER=10;    paper=env10;     XDIM="4950";  YDIM="5700"
  428.         case "$MODEL" in
  429.         0)    set_clipping 171 78    171 78;;
  430.         1)    set_clipping 171 78    171 78;;
  431.         esac
  432.         ;;
  433. 11|envDL)    PAPER=11;    paper=envDL;     XDIM="5200";  YDIM="5200"
  434.         case "$MODEL" in
  435.         0)    set_clipping 176 84    176 84;;
  436.         1)    set_clipping 176 84    176 84;;
  437.         esac
  438.         ;;
  439.  
  440. 28|envC5)    PAPER=28;    paper=envC5;     XDIM="7650";  YDIM="5408"
  441.         case "$MODEL" in
  442.         0)    set_clipping 170 80    169 80;;
  443.         1)    set_clipping 170 80    169 80;;
  444.         esac
  445.         ;;
  446. 34|envB5)    PAPER=34;    paper=envB5;     XDIM="8316";  YDIM="5892"
  447.         case "$MODEL" in
  448.         0)    set_clipping 174 74    174 74;;
  449.         1)    set_clipping 174 74    174 74;;
  450.         esac
  451.         ;;
  452. 37|envMonarch)    PAPER=37;    paper=envMonarch;XDIM="4650";  YDIM="4500"
  453.         case "$MODEL" in
  454.         0)    set_clipping 174 78    173 78;;
  455.         1)    set_clipping 174 78    173 78;;
  456.         esac
  457.         ;;
  458. *)        error "Unimplemented paper code $PAPER";;
  459. esac
  460. # e.g. /usr/share/ghostscript/7.07/lib/gs_statd.ps
  461. PAPERSIZE="-sPAPERSIZE=$paper";
  462.  
  463. case "$RES" in
  464. 600x600)    XDIM=`expr $XDIM / 2`;;
  465. 1200x600)    ;;
  466. esac
  467. DIM="${XDIM}x${YDIM}"
  468.  
  469. #
  470. # Filter thru psnup if N-up printing has been requested
  471. #
  472. case $NUP in
  473. [234689]|1[024568])    PREFILTER="nup";;
  474. *)            PREFILTER=cat;;
  475. esac
  476. if [ "$DEBUG" -ge 9 ]; then
  477.     PREFILTER="tee /tmp/$BASENAME.ps"
  478. fi
  479.  
  480. #
  481. #    Overload -G.  If the file name ends with ".icm" or ".ICM"
  482. #    then convert the ICC color profile to a Postscript CRD,
  483. #    then prepend it to the users job.  Select the intent
  484. #    using the -I option.
  485. #
  486.  
  487. create_crd() {
  488.     #
  489.     # Create a Postscript CRD
  490.     #
  491.     ICC2PS=$PREFIX/bin/foo2zjs-icc2ps
  492.     if [ -x $ICC2PS ]; then
  493.     case "$GAMMAFILE" in
  494.     none | none.icm | */none.icm)
  495.         ;;
  496.     *)
  497.     $ICC2PS -o $GAMMAFILE -t$INTENT > $ICCTMP.crd.ps 2>$ICCTMP.log \
  498.     || error "Problem converting .ICM file to Postscript"
  499.         ;;
  500.     esac
  501.  
  502.     PSTOPS_OPTS="$PSTOPS_OPTS -c"
  503.     cat > $ICCTMP.usecie.ps <<-EOF
  504.         %!PS-Adobe-3.0
  505.         <</UseCIEColor true>>setpagedevice
  506.     EOF
  507.     if [ "$QUALITY" = wts ]; then
  508.         cat >> $ICCTMP.usecie.ps <<-EOF
  509.         << /UseWTS true >> setuserparams
  510.         <<
  511.             /AccurateScreens true
  512.             /HalftoneType 1
  513.             /HalftoneName (Round Dot Screen) cvn
  514.             /SpotFunction { 180 mul cos exch 180 mul cos add 2 div}
  515.             /Frequency 137
  516.             /Angle 37
  517.         >> sethalftone
  518.         EOF
  519.     fi
  520.     cat > $ICCTMP.selcrd.ps <<-EOF
  521.         /Current /ColorRendering findresource setcolorrendering
  522.     EOF
  523.     case "$GAMMAFILE" in
  524.     none | none.icm | */none.icm) GAMMAFILE="$ICCTMP.usecie.ps";;
  525.     *)    GAMMAFILE="$ICCTMP.usecie.ps $ICCTMP.crd.ps $ICCTMP.selcrd.ps";;
  526.     esac
  527.     else
  528.     GAMMFILE=
  529.     fi
  530. }
  531.  
  532. if [ $DEBUG -gt 0 ]; then
  533.     ICCTMP=/tmp/icc
  534. else
  535.     ICCTMP=/tmp/icc$$
  536. fi
  537.  
  538. if [ "" = "$COLOR" ]; then
  539.     COLORMODE=
  540.     GAMMAFILE=
  541. else
  542.     case "$COLORMODE" in
  543.     default)    COLORMODE=$DEFAULTCOLORMODE;;
  544.     esac
  545.     case "$GAMMAFILE" in
  546.     default)    GAMMAFILE=lexRPCA2000.icm;;
  547.     esac
  548. fi
  549.  
  550. CRDBASE="$PREFIX/share/foo2slx/crd"
  551. case "$RES" in
  552.     600x600)    SCREEN=screen1200.ps;;
  553.     1200x600)    SCREEN=screen1200.ps;;
  554. esac
  555.  
  556. PSTOPS_OPTS="-n"
  557.  
  558. case "$COLORMODE" in
  559. 0|"")
  560.     # Monochrome
  561.     ;;
  562. 10|icm)
  563.     # Use old ICM method
  564.     AIB=-A
  565.     BC=-B
  566.     case "$GAMMAFILE" in
  567.     none | none.icm | */none.icm)
  568.     create_crd
  569.     ;;
  570.     *.icm|*.ICM|*.icc|*.ICC)
  571.     #
  572.     # Its really an .ICM file, not a gamma file.
  573.     #
  574.     # The file can be a full path name, or the name of a file in $SHARE/icm/
  575.     #
  576.     if [ -r "$GAMMAFILE" ]; then
  577.         create_crd
  578.     elif [ -r "$SHARE/icm/$GAMMAFILE" ]; then
  579.         GAMMAFILE="$SHARE/icm/$GAMMAFILE"
  580.         create_crd
  581.     else
  582.         GAMMAFILE=
  583.     fi
  584.     ;;
  585.     esac
  586.     ;;
  587. 1|photo)
  588.     # Photo
  589.     GAMMAFILE="$CRDBASE/prolog.ps"
  590.     GAMMAFILE="$GAMMAFILE $CRDBASE/2300w-1200@150-l250-kx,ucr125,75-per.crd"
  591.     GAMMAFILE="$GAMMAFILE $CRDBASE/$SCREEN"
  592.     ;;
  593. 2|graphics)
  594.     # Photo and Text
  595.     GAMMAFILE="$CRDBASE/prolog.ps"
  596.     #GAMMAFILE="$GAMMAFILE $CRDBASE/2300w-1200@150-l250-kx,ucr100,75-per.crd"
  597.     GAMMAFILE="$GAMMAFILE $CRDBASE/kh.crd"
  598.     GAMMAFILE="$GAMMAFILE $CRDBASE/$SCREEN"
  599.     ;;
  600. 3|text)
  601.     # Graphic and Text
  602.     GAMMAFILE="$CRDBASE/prolog.ps"
  603.     #GAMMAFILE="$GAMMAFILE $CRDBASE/2300w-1200@150-l250-kx,ucr100,50-per.crd"
  604.     GAMMAFILE="$GAMMAFILE $CRDBASE/kx.crd"
  605.     GAMMAFILE="$GAMMAFILE $CRDBASE/$SCREEN"
  606.     ;;
  607. 4|tonersave)
  608.     # Reduced toner
  609.     GAMMAFILE="$CRDBASE/prolog.ps"
  610.     GAMMAFILE="$GAMMAFILE $CRDBASE/2300w-1200@150-l250-kx,ucr100,0-per.crd"
  611.     GAMMAFILE="$GAMMAFILE $CRDBASE/$SCREEN"
  612.     ;;
  613. *.crd)
  614.     GAMMAFILE="$CRDBASE/prolog.ps"
  615.     if [ -f $COLORMODE ]; then
  616.     GAMMAFILE="$GAMMAFILE $COLORMODE"
  617.     elif [ -f $CRDBASE/$COLORMODE ]; then
  618.     GAMMAFILE="$GAMMAFILE $CRDBASE/$COLORMODE"
  619.     else
  620.     error "Can't find CRD '$COLORMODE' in . or in $CRDBASE"
  621.     fi
  622.     GAMMAFILE="$GAMMAFILE $CRDBASE/$SCREEN"
  623.     ;;
  624. *)
  625.     error "Unknown color method '$COLORMODE'"
  626.     ;;
  627. esac
  628.  
  629. if [ "$COLOR" != "" -a "$QUALITY" = wts ]; then
  630.     PSTOPS_OPTS="$PSTOPS_OPTS -w"
  631. fi
  632.  
  633. if [ "" != "$COLOR" ]; then
  634.     if [ "" = "$AIB" -a "" = "$BC" ]; then
  635.     # Faster, but can't handle AllIsBlack or BlackClears
  636.     GSDEV=-sDEVICE=pksmraw
  637.     else
  638.     # Can't handle different size pages
  639.     GSDEV=-sDEVICE=bitcmyk
  640.     fi
  641. fi
  642.  
  643. #
  644. #    Figure out USERNAME
  645. #
  646. if [ "$LPUSER" != "" ]; then
  647.     USER="$LPUSER@$LPHOST"
  648. else
  649.     USER=""
  650. fi
  651.  
  652. #
  653. #    Main Program, just cobble together the pipeline and run it
  654. #
  655. #    The malarky with file descriptors 1 and 3 is to avoid a bug in
  656. #    (some versions?) of Ghostscript where Postscript's stdout gets
  657. #    intermingled with the printer drivers output, resulting in
  658. #    corrupted image data.
  659. #
  660. GS="$GSBIN -q -dBATCH -dSAFER -dQUIET -dNOPAUSE"
  661.  
  662. foo2zjs-pstops $PSTOPS_OPTS | \
  663. $PREFILTER \
  664. | ($GS $PAPERSIZE -g$DIM -r$RES $GSDEV $GSOPTS \
  665.     -sOutputFile="|cat 1>&3" $GAMMAFILE -_ >/dev/null) 3>&1 \
  666. | foo2slx -r$RES -g$DIM -p$PAPER -m$MEDIA -n$COPIES -d$DUPLEX -s$SOURCE \
  667.         -z$MODEL $COLOR $CLIP_UL $CLIP_LR $CLIP_LOG $SAVETONER \
  668.         -J "$LPJOB" -U "$USER" \
  669.         $BC $AIB $COLOR2MONO $NOPLANES $EXTRAPAD -D$DEBUG
  670.  
  671. #
  672. #    Log the command line, for debugging and problem reports
  673. #
  674. if [ -x /usr/bin/logger ]; then
  675.     logger -t "$BASENAME" -p lpr.info -- \
  676.     "$GSBIN $PAPERSIZE -g$DIM -r$RES $GSDEV $GSOPTS $GAMMAFILE"
  677.     logger -t "$BASENAME" -p lpr.info -- \
  678.     "foo2slx -r$RES -g$DIM -p$PAPER -m$MEDIA \
  679. -n$COPIES -d$DUPLEX -s$SOURCE -z$MODEL $COLOR $CLIP_UL $CLIP_LR $CLIP_LOG \
  680. $SAVETONER $BC $AIB $COLOR2MONO $NOPLANES $EXTRAPAD"
  681. fi
  682.  
  683. #
  684. #    Remove cruft
  685. #
  686. if [ $DEBUG -eq 0 ]; then
  687.     for i in crd.ps log usecie.ps selcrd.ps
  688.     do
  689.     file="$ICCTMP.$i"
  690.     [ -f $file ] && rm -f $file
  691.     done
  692.     [ -f "$TMPFILE" ] && rm -f $TMPFILE
  693. fi
  694.  
  695. exit 0
  696.